home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / Tool Chest / Interfaces / Universal Interfaces 2.0a3 / Universal AIncludes / Finder.a < prev    next >
Encoding:
Text File  |  1994-11-11  |  1.9 KB  |  58 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Finder.a
  3. ;
  4. ;    Copyright:    © 1984-1994 by Apple Computer, Inc.
  5. ;                All rights reserved.
  6. ;
  7. ;    Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8. ;
  9. ;    Bugs?:        If you find a problem with this file, send the file and version
  10. ;                information (from above) and the problem description to:
  11. ;
  12. ;                    Internet:    apple.bugs@applelink.apple.com
  13. ;                    AppleLink:    APPLE.BUGS
  14. ;
  15. ;
  16.  
  17.     IF &TYPE('__FINDER__') = 'UNDEFINED' THEN
  18. __FINDER__ SET 1
  19.  
  20.  
  21. ; Make only the following consts avaiable to resource files that include this file 
  22. kCustomIconResource                EQU        -16455                ; Custom icon family resource ID 
  23. kContainerFolderAliasType        EQU        'fdrp'                ; type for folder aliases 
  24. kContainerTrashAliasType        EQU        'trsh'                ; type for trash folder aliases 
  25. kContainerHardDiskAliasType        EQU        'hdsk'                ; type for hard disk aliases 
  26. kContainerFloppyAliasType        EQU        'flpy'                ; type for floppy aliases 
  27. kContainerServerAliasType        EQU        'srvr'                ; type for server aliases 
  28. kApplicationAliasType            EQU        'adrp'                ; type for application aliases 
  29. kContainerAliasType                EQU        'drop'                ; type for all other containers 
  30. ; types for Special folder aliases 
  31. kSystemFolderAliasType            EQU        'fasy'
  32. kAppleMenuFolderAliasType        EQU        'faam'
  33. kStartupFolderAliasType            EQU        'fast'
  34. kPrintMonitorDocsFolderAliasType EQU        'fapn'
  35. kPreferencesFolderAliasType        EQU        'fapf'
  36. kControlPanelFolderAliasType    EQU        'fact'
  37. kExtensionFolderAliasType        EQU        'faex'
  38. ; types for AppleShare folder aliases 
  39. kExportedFolderAliasType        EQU        'faet'
  40. kDropFolderAliasType            EQU        'fadr'
  41. kSharedFolderAliasType            EQU        'fash'
  42. kMountedFolderAliasType            EQU        'famn'
  43.  
  44. ; Finder Flags 
  45. kIsOnDesk                        EQU        $1
  46. kColor                            EQU        $E
  47. kIsShared                        EQU        $40
  48. kHasBeenInited                    EQU        $100
  49. kHasCustomIcon                    EQU        $400
  50. kIsStationery                    EQU        $800
  51. kIsStationary                    EQU        $800
  52. kNameLocked                        EQU        $1000
  53. kHasBundle                        EQU        $2000
  54. kIsInvisible                    EQU        $4000
  55. kIsAlias                        EQU        $8000
  56.  
  57.     ENDIF ; __FINDER__
  58.